864 links
  • Links Lounge
  • Home
  • Login
  • RSS Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
◄Older
page 1 / 3
53 results tagged Qt x
  • [FIXED] Ctrl-C doesn't work with PyQt ~ PythonFixing

    signal.signal(signal.SIGINT, signal.SIG_DFL)

    Mon Dec 11 10:26:11 2023 - permalink -
    - - - https://www.pythonfixing.com/2022/02/fixed-ctrl-c-doesn-work-with-pyqt.html
    Python Qt
  • Critique: Guide to the Total Cost of Ownership of Open-Source Software – Burkhard Stubert
    Fri May 20 17:58:54 2022 - permalink -
    - - - https://embeddeduse.com/2022/05/17/critique-guide-to-the-total-cost-of-ownership-of-open-source-software/
    Libre opensource Qt
  • Introducing qmake2cmake
    Thu Apr 14 09:47:48 2022 - permalink -
    - - - https://www.qt.io/blog/introducing-qmake2cmake
    C++ CMake qmake Qt
  • Announcing ASql - async Sql for Qt

    Ouah.

    Tue Aug 25 08:55:14 2020 - permalink -
    - - - https://cutelyst.org/2020/08/24/announcing-asql-async-sql-for-qt
    Qt SQL
  • Fix error while loading shared libraries: libQt5Core.so.5

    Sur un Debian Buster tout frais, en cas de error while loading shared libraries: libQt5Core.so.5: cannot open shared object file: No such file or directory, il faut exécuter : sudo strip --remove-section=.note.ABI-tag /usr/lib64/libQt5Core.so.5

    Fri Aug 21 15:19:27 2020 - permalink -
    - - - https://github.com/dnschneid/crouton/wiki/Fix-error-while-loading-shared-libraries:-libQt5Core.so.5
    Debian Linux Qt
  • GitHub - jkriege2/JKQtPlotter: a Qt Plotter-class (including a fast variant and a LaTeX equation renderer!), written in C/C++
    Mon Jan 7 09:27:57 2019 - permalink -
    - - - https://github.com/jkriege2/JKQtPlotter
    C++ Graph Qt
  • tst_qsslcertificate.cpp source code [qtbase/tests/auto/network/ssl/qsslcertificate/tst_qsslcertificate.cpp] - Woboq Code Browser

    QVariantMap aiaValue = aia.value().toMap();
    QCOMPARE(aiaValue.keys(), QList() << QStringLiteral("OCSP") << QStringLiteral("caIssuers"));
    QString ocsp = aiaValue[QStringLiteral("OCSP")].toString();

    Wed Oct 31 13:51:19 2018 - permalink -
    - - - https://code.woboq.org/qt5/qtbase/tests/auto/network/ssl/qsslcertificate/tst_qsslcertificate.cpp.html
    OCSP QSsl Qt
  • Getting the most of signal/slot connections : Viking Software – Qt Experts

    Le 3ème argument d'un QObject::connect (le contexte) peut être très utile pour éviter les crash en cas de destruction du pointeur visé dans cet argument. Ou en cas de connexion inter-threads.

    Tue Jun 12 09:24:49 2018 - permalink -
    - - - https://www.vikingsoftware.com/getting-the-most-of-signal-slot-connections/
    C++ Qt
  • Handling multiple versions of Qt – The Enigma

    On peut ajouter une version de Qt sur sa machine grâce à qtchooser:

    qtchooser -install 5.8 /opt/Qt/5.8.0/bin/qmake
    qmake -qt5.8 -v
    Mon Mar 12 15:01:26 2018 - permalink -
    - - - https://harishnavnit.wordpress.com/2014/03/24/handling-multiple-versions-of-qt/
    Cross-Compilation Qt
  • Two C++ tricks used in Verdigris implementation
    Fri Feb 16 13:57:05 2018 - permalink -
    - - - https://woboq.com/blog/verdigris-implementation-tricks.html
    C++ Qt
  • Qt Tips (01): Enlarge Spin box | Software & Hardware: Hand in Hand

    Luckily, the spin box appearance can be changed by Style Sheet.

    To get “Wheel Diameter” style spin box, use following style sheet:

    QSpinBox { border: 3px inset grey; }

    QSpinBox::up-button { subcontrol-position: left; width: 40px; height: 35px;}

    QSpinBox::down-button { subcontrol-position: right; width: 40px; height: 35px;}

    To get “Pulses per Revolution” style spin box, use following style sheet:

    QSpinBox { border: 3px outset grey;padding-right: 40px;}

    QSpinBox::up-button { subcontrol-position: right; right: 40px; width: 40px; height: 35px;}

    QSpinBox::down-button { subcontrol-position: right; width: 40px; height: 35px;}

    To get “Count” style spin box, use following style sheet:

    QSpinBox { border: 3px groove gray}

    QSpinBox::up-button { subcontrol-position: top right; width: 40px; height: 19px;}

    QSpinBox::down-button { subcontrol-position: bottom right; width: 40px; height: 19px;}

    Mon Dec 11 14:01:23 2017 - permalink -
    - - - http://mmcircuit.com/qt-tips-01-enlarge-spin-box/
    QSpinBox Qt
  • c++ - how to check QT_VERSION to include different header? - Stack Overflow

    if QT_VERSION < QT_VERSION_CHECK(5, 0, 0)

    Fri Nov 17 05:51:12 2017 - permalink -
    - - - https://stackoverflow.com/questions/24899558/how-to-check-qt-version-to-include-different-header
    C++ Qt Version
  • libqtaws/test/unit at master · pcolby/libqtaws · GitHub
    Mon Sep 25 13:49:46 2017 - permalink -
    - - - https://github.com/pcolby/libqtaws/tree/master/test/unit
    Architecture Qt Test
  • Qt Lite – basysKom Blog
    Mon May 29 13:50:40 2017 - permalink -
    - - - http://blog.basyskom.com/2017/qt-lite/
    Linux Qt QtLite
  • DevOps and Continuous Integration challenges in C/C++ projects

    Super article !

    Wed Mar 15 09:32:08 2017 - permalink -
    - - - http://blog.conan.io/2017/03/14/Devops-and-Continouous-Integration-Challenges-in-C-C++-Projects.html
    C C++ Conan ContinuousIntegration Qompoter Qt
  • How to use QThread properly

    Un autre post sur les QThread. Quand on connaît un tantiner le sujet, on peut commencer par celui-là pour remettre les pendules à l'heure.

    Fri Jan 13 13:01:56 2017 - permalink -
    - - - http://www.vikingsoft.eu/how-to-use-qthread-properly/
    Qt QThread Thread
  • How do you stop qmake from trying to strip all installed files? | MythTV | Dev

    When adding some files to INSTALLS, they are stripped if they are excecutables.

    To avoid using strip, you can update "QMAKE_STRIP" variable and force stripping executables one by one using ".extra":

    target.extra = strip $${DESTDIR}/$(TARGET)
    QMAKE_STRIP = echo # Avoid striping unwanted files (which will not work)
    applibs.files = $${DESTDIR}/*.so*
    applibs.path = $$EXPORT_LIBPATH
    INSTALLS += applibs
    Thu Dec 1 15:40:55 2016 - permalink -
    - - - http://www.gossamer-threads.com/lists/mythtv/dev/141885
    C++ make qmake Qt
  • "How to use QThread in the right way (Part 1)" — 1+1=10

    Un autre post sur les QThread.

    Thu Oct 6 09:27:42 2016 - permalink -
    - - - http://blog.debao.me/2013/08/how-to-use-qthread-in-the-right-way-part-1/
    C++ Qt Thread
  • GitHub - Fylhan/qompoter: Dependency manager for Qt / C++.

    Hier, j'ai releasé la v0.2.6 de Qompoter, a C++/Qt dependency manager. Outre les améliorations apportées au truc (recherche récursive des paquets, numéros de versions flous du genre v1.*, recherche des paquets dans Inqlude), cela m'a aussi permis de découvrir les scripts d'auto-complémetion Bash ! Et je surkiffe taper qompoter tab tab et voir la liste des actions possibles apparaître "install export inqlude jsong". C'est beau Linux.

    Qompoter a atteint un niveau de maturité suffisant pour les petits projets, alors n'hésitez pas ! Vos retours sont les bienvenues.

    Wed Oct 5 09:35:22 2016 - permalink -
    - - - https://github.com/Fylhan/qompoter
    C++ Qompoter Qt
  • QMake-top-level-srcdir-and-builddir - Qt Wiki

    Très pratique le fichier .qmake.conf.

    Tue Aug 30 10:35:55 2016 - permalink -
    - - - https://wiki.qt.io/QMake-top-level-srcdir-and-builddir
    C++ qmake Qt
Links per page: 20 50 100
◄Older
page 1 / 3
Shaarli - The personal, minimalist, super-fast, no-database delicious clone by the Shaarli community - Help/documentation